home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 / Ham Radio 2000.iso / ham2000 / tcp_ip / os2 / pmnos11s / session.h < prev    next >
C/C++ Source or Header  |  1992-10-31  |  3KB  |  113 lines

  1. /* Mods by PA0GRI */
  2. #ifndef    _SESSION_H
  3. #define    _SESSION_H
  4.  
  5. #include <stdio.h>
  6.  
  7. #ifndef    _GLOBAL_H
  8. #include "global.h"
  9. #endif
  10.  
  11. #ifndef    _PROC_H
  12. #include "proc.h"
  13. #endif
  14.  
  15. #ifndef _HARDWARE_H
  16. #include "hardware.h"
  17. #endif
  18.  
  19.  
  20. #ifndef    _FTPCLI_H
  21. #include "ftpcli.h"
  22. #endif
  23.  
  24. #ifndef    _TELNET_H
  25. #include "telnet.h"
  26. #endif
  27.  
  28. #define    MOREROWS    24    /* rows on screen before --more-- */
  29.  
  30. struct ttystate {
  31.     struct mbuf *line;    /* Line buffer */
  32.     int echo;        /* Keyboard local echoing? */
  33.     int edit;        /* Local editing? */
  34.     int crnl;        /* Translate cr to lf? */
  35. };
  36.  
  37. /* Session control structure; only one entry is used at a time */
  38. struct session {
  39.     int type;
  40. #define    FREE    0
  41. #define    TELNET    1
  42. #define    FTP    2
  43. #define    AX25TNC    3
  44. #define    FINGER    4
  45. #define    PING    5
  46. #define NRSESSION 6
  47. #define    COMMAND    7
  48. #define    MORE    8
  49. #define    HOP    9
  50. #define    TIP    10
  51. #define    PPPPASS    11
  52. #define DIAL    12
  53. #define DQUERY    13
  54. #define DCLIST    14
  55. #define    RLOGIN    15
  56. #define TRACESESSION 16
  57.  
  58.     char *name;    /* Name of remote host */
  59.     union {
  60.         struct ftpcli *ftp;
  61.         struct telnet *telnet;
  62.     } cb;
  63. #if defined(PM)
  64.     HWND    hwndSession;    /* Window handling session */
  65.     HWND    hwndFrame;    /* Frame of Window handling session */
  66.     struct proc *display;    /* pm display deamon */
  67. #endif
  68.     struct proc *proc;    /* Primary session process (e.g., tn recv) */
  69.     struct proc *proc1;    /* Secondary session process (e.g., tn xmit) */
  70.     struct proc *proc2;    /* Tertiary session process (e.g., upload) */
  71.     int s;            /* Primary network socket (control for FTP) */
  72.     FILE *record;        /* Receive record file */
  73.     char *rfile;        /* Record file name */
  74.     FILE *upload;        /* Send file */
  75.     char *ufile;        /* Upload file name */
  76.     struct ttystate ttystate;
  77.     struct screen *screen;
  78.     int input;        /* Input socket */
  79.     int output;        /* Output socket */
  80.     int flowmode;        /* control "more" mode */
  81.     int row;        /* Rows remaining until "more" */
  82.     int morewait;        /* Output driver is waiting on us */
  83.     int tsavex;        /* Save for x top screen */
  84.     int tsavey;        /* Save for y top screen */
  85.     int bsavex;        /* Save for x bottom screen */
  86.     int bsavey;        /* Save for y bottom screen */
  87.     int split;        /* Signal for split screen */
  88. };
  89. #define    NULLSESSION    (struct session *)0
  90.  
  91. extern char *Sestypes[];
  92. extern unsigned Nsessions;        /* Maximum number of sessions */
  93. extern struct session *Sessions;    /* Session descriptors themselves */
  94. extern struct session *Current;        /* Always points to current session */
  95. extern struct session *Lastcurr;    /* Last non-command session */
  96. extern struct session *Command;        /* Pointer to command session */
  97.  
  98. /* In session.c: */
  99. void freesession __ARGS((struct session *sp));
  100. struct session *sessptr __ARGS((char *cp));
  101. struct session *newsession __ARGS((char *name,int type,int split));
  102. void upload __ARGS((int unused,void *sp1,void *p));
  103. extern char TooManySessions[];
  104.  
  105. /* In pc.c: */
  106. void swapscreen __ARGS((struct session *old,struct session *new));
  107.  
  108. extern int16 Lport;
  109. #define    ALERT_EOF    1
  110.  
  111.  
  112. #endif    /* _SESSION_H */
  113.